home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 299_01 / plot.h < prev    next >
Text File  |  1989-12-28  |  653b  |  13 lines

  1. /****************************************************************************/
  2. /* file name plot.h                                                         */
  3. /*  (c) by Ronald Michaels. This program may be freely copied, modified,    */
  4. /*  transmitted, or used for any non-commercial purpose.                    */
  5. /* include this header in plot.c and in file which calls plot functions     */
  6. /****************************************************************************/
  7.  
  8. void init_graph       (void);
  9. void close_graph      (void);
  10. void set_scales       (double,int,double *,double *);
  11. void point            (double,int,double,double);
  12.  
  13.